From 62f93ace3321d1d469d26c551e4d347d53380973 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 15 Apr 2011 01:31:40 -0700 Subject: [PATCH] * process.c (send_process): Change another size_t to EMACS_INT. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index f41cdbe5c71..6b58bc6315b 100644 --- a/src/process.c +++ b/src/process.c @@ -5368,7 +5368,7 @@ send_process (volatile Lisp_Object proc, const char *volatile buf, /* Send this batch, using one or more write calls. */ while (this > 0) { - size_t written = 0; + EMACS_INT written = 0; int outfd = p->outfd; old_sigpipe = (void (*) (int)) signal (SIGPIPE, send_process_trap); #ifdef DATAGRAM_SOCKETS -- 2.30.2